home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / GameboyDev / GBDK / lib / strlen.c < prev    next >
C/C++ Source or Header  |  1999-03-29  |  139b  |  14 lines

  1. #include <string.h>
  2.  
  3. /* Return length of string */
  4.  
  5. BYTE strlen(const char *s)
  6. {
  7.   UBYTE i;
  8.  
  9.   i = 0;
  10.   while(*s++)
  11.     i++;
  12.   return i;
  13. }
  14.